home *** CD-ROM | disk | FTP | other *** search
/ STraTOS 1997 April & May / STraTOS 1 - 1997 April & May.iso / CD01 / PRGMANIA / BFED.10 / EVENTS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-12-16  |  1019 b   |  40 lines

  1. /*********************************************
  2.     file: events.h
  3.     utility: header file of events.c
  4.     date: 14 dec 96
  5.     author: C. Moreau
  6.     modifications:
  7.     comments: 
  8. *********************************************/
  9.  
  10. #ifndef _EVENTS_H
  11. #define _EVENTS_H
  12.  
  13. /*********************************************
  14.     includes
  15. *********************************************/
  16.  
  17. /*********************************************
  18.     defines
  19. *********************************************/
  20. #ifndef TRUE
  21. #define TRUE        1
  22. #define FALSE        0
  23. #endif 
  24.  
  25. /*********************************************
  26.     types definitions
  27. *********************************************/
  28.  
  29. /*********************************************
  30.     globals variables declarations
  31. *********************************************/
  32. extern int objet;
  33. extern int message[8];            /* AES message array */
  34.  
  35. /*********************************************
  36.     globals functions declarations
  37. *********************************************/
  38. extern void TaskMaster(void);
  39.  
  40. #endif